Skip to main content

Delete Project Resource Endpoint

Overview

This endpoint allows users to delete a specific resource from a project.

Request Details

HTTP Method

DELETE

Route

/api/users/[user_id]/projects/[project_id]/resources/[resource_type]/[resource_id]

Route Parameters

ParameterTypeRequiredDescription
user_idintegerYesThe ID of the authenticated user
project_idintegerYesThe ID of the project
resource_typestringYesType of resource (e.g., 'user-files', 'template-collections', 'github-installations', 'chat-conversations')
resource_idintegerYesThe ID of the resource

Headers

HeaderValueRequiredDescription
Acceptapplication/jsonYesSpecifies the response format
Cookieneptun-sessionYesSession authentication cookie

Query Parameters

No query parameters required.

Response Format

Response Status Codes

Status CodeDescription
204Successfully deleted resource
400Bad request (invalid parameters)
401Unauthorized (invalid or missing session)
403Forbidden (user_id mismatch)
404Resource not found
500Server error

Success Response (204 No Content)

No response body.

Error Response (400 Bad Request)

{
"statusCode": 400,
"message": "Invalid resource type or ID"
}

Code Examples

cURL Example

curl -X DELETE "https://neptun-webui.vercel.app/api/users/1/projects/789/resources/user-files/123" \
-H "Accept: application/json" \
-H "Cookie: neptun-session=your-session-cookie"

Python Example

import httpx
from typing import Literal

ResourceType = Literal['user-files', 'template-collections', 'github-installations', 'chat-conversations']

async def delete_project_resource(
user_id: int,
project_id: int,
resource_type: ResourceType,
resource_id: int,
session_cookie: str
) -> None:
url = f"https://neptun-webui.vercel.app/api/users/{user_id}/projects/{project_id}/resources/{resource_type}/{resource_id}"

async with httpx.AsyncClient() as client:
response = await client.delete(
url,
headers={
"Accept": "application/json",
"Cookie": f"neptun-session={session_cookie}"
}
)
response.raise_for_status()

TypeScript/JavaScript Example

type ResourceType = 'user-files' | 'template-collections' | 'github-installations' | 'chat-conversations'

async function deleteProjectResource(
userId: number,
projectId: number,
resourceType: ResourceType,
resourceId: number,
sessionCookie: string
): Promise<void> {
const response = await fetch(
`https://neptun-webui.vercel.app/api/users/${userId}/projects/${projectId}/resources/${resourceType}/${resourceId}`,
{
method: 'DELETE',
headers: {
Accept: 'application/json',
Cookie: `neptun-session=${sessionCookie}`,
},
}
)

if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`)
}
}

Notes

  • The session cookie is required for authentication
  • The project and resource must belong to the specified user
  • The resource_type must be one of the allowed values
  • All associated resource data will be permanently deleted
  • This action cannot be undone
  • All IDs must be valid positive integers
  • Resource-specific deletions:
    • For template-collections: all associated templates will be deleted
    • For chat-conversations: all associated messages will be deleted
    • For github-installations: the GitHub installation connection will be removed
    • For user-files: all file content and metadata will be removed